home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / CHKBOOK.PAK / CHKBOOK.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  53 lines

  1. // chkbook.h : main header file for the CHKBOOK application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "resource.h"       // main symbols
  14. #include "mainfrm.h"
  15. #include "chkbkfrm.h"
  16. #include "dollcent.h"
  17. #include "fxrecdoc.h"
  18. #include "checkdoc.h"
  19. #include "checkvw.h"
  20. #include "rowview.h"
  21. #include "bookvw.h"
  22.  
  23. class CChkBookApp : public CWinApp
  24. {
  25. public:
  26.     CChkBookApp();
  27.     CMultiDocTemplate* m_pBookViewTemplate;
  28.     CMultiDocTemplate* m_pCheckViewTemplate;
  29.  
  30. // Operations
  31.     void UpdateIniFileWithDocPath(LPCTSTR lpszPathName);
  32.  
  33. // Implementation
  34. protected:
  35.     // overrides of CWinApp
  36.     virtual BOOL InitInstance();
  37. #ifdef _MAC
  38.     virtual BOOL CreateInitialDocument();
  39. #endif
  40.     virtual CDocument* OpenDocumentFile(LPCTSTR lpszFileName);
  41.  
  42.     CString GetDocPathFromIniFile();
  43.     //{{AFX_MSG(CChkBookApp)
  44.     afx_msg void OnFileNew();
  45.     afx_msg void OnAppAbout();
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. extern CChkBookApp theApp;
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.